home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / ENV Server / GetPutEnv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-31  |  592 b   |  24 lines  |  [TEXT/ALFA]

  1. /*
  2. ** GetPutEnv.h
  3. **
  4. ** Client interfaces to Mac environment variable server.
  5. ** This file must be included in any source files that call UNIX
  6. ** getenv() or putenv().  Remember to include the GPenv.lib
  7. ** library to your project...
  8. **
  9. ** 5/12/93 - created
  10. ** 5/31/93 - changed around, cleaned up
  11. */
  12.  
  13. #ifndef GETPUTENV_H
  14. #define GETPUTENV_H
  15.  
  16.  
  17. #define putenv(x)    Putenv(x)        /* to override the default versions */
  18. #define getenv(x)    Getenv(x)
  19.  
  20. int   Putenv( const char*);    /* Prototypes for the new calls. */
  21. char *Getenv( const char*);    /* Both have same calling semantics of originals */
  22.  
  23.  
  24. #endif